home *** CD-ROM | disk | FTP | other *** search
/ The Atari Compendium / The Atari Compendium (Toad Computers) (1994).iso / files / prgtools / mint / shells / mintbash.zoo / etc / profile < prev   
Encoding:
Text File  |  1991-06-08  |  257 b   |  18 lines

  1. # Startup file for bash login shells.
  2.  
  3. cat /etc/message
  4. echo
  5.  
  6. if [ "$PS1" ]; then
  7.   PS1='\u@\h\$ '
  8.   if [ -f ~/bash.rc ]; then
  9.     source ~/bash.rc;
  10.   else
  11.     if [ -f ~/.bashrc ]; then source ~/.bashrc; fi;
  12.   fi
  13. fi
  14.  
  15. LOGIN_SHELL=true
  16.  
  17. cd ~
  18.